blob: f6062a61d5cac0d6231ea8e34a6f8ad6b35e9c15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type { Metadata } from 'next';
import { JourneysPage } from './JourneysPage';
export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
const { websiteId } = await params;
return <JourneysPage websiteId={websiteId} />;
}
export const metadata: Metadata = {
title: 'Journeys',
};
|